home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / FredFish PD 316.adf / IntuiSup / Applications / SmallBenchSrc / makefile < prev    next >
Makefile  |  1990-02-06  |  355b  |  14 lines

  1. OBJ=smallbench.o file.o
  2. LIB=lib:amiga.lib lib:lcnb.lib lib:isupres.lib
  3. ARG=SC SD BATCH
  4.  
  5. # add -DDEBUG to get debug messages on stdout and
  6. # avoid protos - fasters compiles, but larger code
  7. CCFLAGS=-b0 -ccst -v -O
  8.  
  9. .c.o:
  10.             lc $(CCFLAGS) $*
  11.  
  12. smallbench: $(OBJ) lib:isupres.lib
  13.             blink from lib:a.o $(OBJ) lib $(LIB) to smallbench $(ARG)
  14.